|
Java HTTP Server | ||||||||
PREV NEXT | FRAMES NO FRAMES |
HttpServer
instance which will bind to the
specified InetSocketAddress
(IP address and port number)
A maximum backlog can also be specified.
HttpsServer
instance which will bind to the
specified InetSocketAddress
(IP address and port number)
A maximum backlog can also be specified.
HttpServer.setExecutor(Executor)
, or null
if none was
specified.
HttpsConfigurator
object, if it has been set.
HttpPrincipal
that represents
the authenticated user for this HttpExchange.
Map
<
String
,List
<String
>>.HttpHandler
which is invoked to handle requests destined
for that path on the associated HttpServer or HttpsServer.HttpServer
which provides
support for HTTPS.Executor
object.
HttpsConfigurator
object.
HttpExchange.getRequestBody()
will
return the given InputStream
, and calls to
HttpExchange.getResponseBody()
will return the given
OutputStream
.
|
Java HTTP Server | ||||||||
PREV NEXT | FRAMES NO FRAMES |